-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
handle the targets that are missing in stage0 #124461
Conversation
Signed-off-by: onur-ozkan <work@onurozkan.dev>
rustbot has assigned @Mark-Simulacrum. Use |
r? @pietroalbini It would be nice to add a check somewhere that errors out if one of the targets in |
I still think parsing the target list in rustc_target is a better idea, but 🤷 |
…iaskrgr Rollup of 6 pull requests Successful merges: - rust-lang#124461 (handle the targets that are missing in stage0) - rust-lang#124492 (Generalize `adjust_from_tcx` for `Allocation`) - rust-lang#124588 (Use `ObligationCtxt` in favor of `TraitEngine` in many more places) - rust-lang#124612 (Add support for inputing via stdin with run-make-support) - rust-lang#124613 (Allow fmt to run on rmake.rs test files) - rust-lang#124649 (Fix HorizonOS build broken by rust-lang#124210) r? `@ghost` `@rustbot` modify labels: rollup
Rollup merge of rust-lang#124461 - onur-ozkan:followup-123546, r=pietroalbini handle the targets that are missing in stage0 During sanity checks, we search for target names to determine if they exist in the compiler's built-in target list (`rustc --print target-list`). While a target name may be present in the stage2 compiler, it might not yet be included in stage0. This PR handles that difference. Follow-up of rust-lang#123546
…albini keep the `STAGE0_MISSING_TARGETS` list updated Implements rust-lang#124461 (comment). r? pietroalbini
keep the `STAGE0_MISSING_TARGETS` list updated Implements rust-lang/rust#124461 (comment). r? pietroalbini
keep the `STAGE0_MISSING_TARGETS` list updated Implements rust-lang/rust#124461 (comment). r? pietroalbini
keep the `STAGE0_MISSING_TARGETS` list updated Implements rust-lang/rust#124461 (comment). r? pietroalbini
During sanity checks, we search for target names to determine if they exist in the compiler's built-in target list (
rustc --print target-list
). While a target name may be present in the stage2 compiler, it might not yet be included in stage0. This PR handles that difference.Follow-up of #123546